home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap08 / Paint4 / MainFrame.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-05  |  459 b   |  18 lines

  1. //***********************************************************************
  2. //
  3. //  MainFrame.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CMainFrame : public CFrameWnd
  8. {
  9.     DECLARE_DYNCREATE (CMainFrame)
  10.  
  11. protected:
  12.     afx_msg int OnCreate (LPCREATESTRUCT);
  13.     afx_msg void OnMeasureItem (int, LPMEASUREITEMSTRUCT);
  14.     afx_msg void OnDrawItem (int, LPDRAWITEMSTRUCT);
  15.  
  16.     DECLARE_MESSAGE_MAP ()
  17. };
  18.